c# create new thread

55

c# create new thread -

using System.Threading;

Thread thread = new Thread(new ThreadStart(WorkThreadFunction));
thread.Start();

Comments

Submit
0 Comments